home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / livecd.squashfs / usr / include / nss / pqgutil.h < prev    next >
C/C++ Source or Header  |  2006-04-20  |  7KB  |  131 lines

  1. /* ***** BEGIN LICENSE BLOCK *****
  2.  * Version: MPL 1.1/GPL 2.0/LGPL 2.1
  3.  *
  4.  * The contents of this file are subject to the Mozilla Public License Version
  5.  * 1.1 (the "License"); you may not use this file except in compliance with
  6.  * the License. You may obtain a copy of the License at
  7.  * http://www.mozilla.org/MPL/
  8.  *
  9.  * Software distributed under the License is distributed on an "AS IS" basis,
  10.  * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
  11.  * for the specific language governing rights and limitations under the
  12.  * License.
  13.  *
  14.  * The Original Code is the Netscape security libraries.
  15.  *
  16.  * The Initial Developer of the Original Code is
  17.  * Netscape Communications Corporation.
  18.  * Portions created by the Initial Developer are Copyright (C) 1994-2000
  19.  * the Initial Developer. All Rights Reserved.
  20.  *
  21.  * Contributor(s):
  22.  *
  23.  * Alternatively, the contents of this file may be used under the terms of
  24.  * either the GNU General Public License Version 2 or later (the "GPL"), or
  25.  * the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
  26.  * in which case the provisions of the GPL or the LGPL are applicable instead
  27.  * of those above. If you wish to allow use of your version of this file only
  28.  * under the terms of either the GPL or the LGPL, and not to allow others to
  29.  * use your version of this file under the terms of the MPL, indicate your
  30.  * decision by deleting the provisions above and replace them with the notice
  31.  * and other provisions required by the GPL or the LGPL. If you do not delete
  32.  * the provisions above, a recipient may use your version of this file under
  33.  * the terms of any one of the MPL, the GPL or the LGPL.
  34.  *
  35.  * ***** END LICENSE BLOCK ***** */
  36. #ifndef _PQGUTIL_H_
  37. #define _PQGUTIL_H_ 1
  38.  
  39. #include "blapi.h"
  40.  
  41. /**************************************************************************
  42.  *  Return a pointer to a new PQGParams struct that is a duplicate of     *
  43.  *  the one passed as an argument.                                        *
  44.  *  Return NULL on failure, or if NULL was passed in.                     *
  45.  **************************************************************************/
  46. extern PQGParams * PQG_DupParams(const PQGParams *src);
  47.  
  48.  
  49. /**************************************************************************
  50.  *  Return a pointer to a new PQGParams struct that is constructed from   *
  51.  *  copies of the arguments passed in.                                    *
  52.  *  Return NULL on failure.                                               *
  53.  **************************************************************************/
  54. extern PQGParams * PQG_NewParams(const SECItem * prime, 
  55.                                  const SECItem * subPrime, 
  56.                                  const SECItem * base);
  57.  
  58.  
  59. /**************************************************************************
  60.  * Fills in caller's "prime" SECItem with the prime value in params.
  61.  * Contents can be freed by calling SECITEM_FreeItem(prime, PR_FALSE);    
  62.  **************************************************************************/
  63. extern SECStatus PQG_GetPrimeFromParams(const PQGParams *params, 
  64.                                         SECItem * prime);
  65.  
  66.  
  67. /**************************************************************************
  68.  * Fills in caller's "subPrime" SECItem with the prime value in params.
  69.  * Contents can be freed by calling SECITEM_FreeItem(subPrime, PR_FALSE);    
  70.  **************************************************************************/
  71. extern SECStatus PQG_GetSubPrimeFromParams(const PQGParams *params, 
  72.                                            SECItem * subPrime);
  73.  
  74.  
  75. /**************************************************************************
  76.  * Fills in caller's "base" SECItem with the base value in params.
  77.  * Contents can be freed by calling SECITEM_FreeItem(base, PR_FALSE);    
  78.  **************************************************************************/
  79. extern SECStatus PQG_GetBaseFromParams(const PQGParams *params, SECItem *base);
  80.  
  81.  
  82. /**************************************************************************
  83.  *  Free the PQGParams struct and the things it points to.                *
  84.  **************************************************************************/
  85. extern void PQG_DestroyParams(PQGParams *params);
  86.  
  87.  
  88. /**************************************************************************
  89.  *  Return a pointer to a new PQGVerify struct that is a duplicate of     *
  90.  *  the one passed as an argument.                                        *
  91.  *  Return NULL on failure, or if NULL was passed in.                     *
  92.  **************************************************************************/
  93. extern PQGVerify * PQG_DupVerify(const PQGVerify *src);
  94.  
  95.  
  96. /**************************************************************************
  97.  *  Return a pointer to a new PQGVerify struct that is constructed from   *
  98.  *  copies of the arguments passed in.                                    *
  99.  *  Return NULL on failure.                                               *
  100.  **************************************************************************/
  101. extern PQGVerify * PQG_NewVerify(unsigned int counter, const SECItem * seed, 
  102.                                  const SECItem * h);
  103.  
  104.  
  105. /**************************************************************************
  106.  * Returns "counter" value from the PQGVerify.
  107.  **************************************************************************/
  108. extern unsigned int PQG_GetCounterFromVerify(const PQGVerify *verify);
  109.  
  110. /**************************************************************************
  111.  * Fills in caller's "seed" SECItem with the seed value in verify.
  112.  * Contents can be freed by calling SECITEM_FreeItem(seed, PR_FALSE);    
  113.  **************************************************************************/
  114. extern SECStatus PQG_GetSeedFromVerify(const PQGVerify *verify, SECItem *seed);
  115.  
  116.  
  117. /**************************************************************************
  118.  * Fills in caller's "h" SECItem with the h value in verify.
  119.  * Contents can be freed by calling SECITEM_FreeItem(h, PR_FALSE);    
  120.  **************************************************************************/
  121. extern SECStatus PQG_GetHFromVerify(const PQGVerify *verify, SECItem * h);
  122.  
  123.  
  124. /**************************************************************************
  125.  *  Free the PQGVerify struct and the things it points to.                *
  126.  **************************************************************************/
  127. extern void PQG_DestroyVerify(PQGVerify *vfy);
  128.  
  129.  
  130. #endif
  131.